/* === Highlight Works === */
.highlight-container {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 14px 4px 24px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.highlight-card {
    display: flex;
    flex: 0 0 232px;
    flex-direction: column;
    padding: 11px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.highlight-card:hover {
    transform: translateY(-2px);
    border-color: rgba(30, 58, 138, 0.14);
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.08);
}

.highlight-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.highlight-card img {
    width: 100%;
    height: 136px;
    margin-bottom: 9px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    object-fit: cover;
}

.work-title {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 7px;
    color: #1f2937;
    font-size: 13.8px;
    font-weight: 700;
    line-height: 1.34;
    -webkit-box-orient: vertical;
}

.highlight-card a:hover .work-title {
    color: #1e3a8a;
}

.work-meta {
    margin-top: auto;
    color: #667487;
    font-size: 11.8px;
    line-height: 1.52;
}

.work-highlight {
    display: inline-block;
    margin-top: 3px;
    color: #9a3412;
    font-weight: 700;
}

.work-highlight.blue {
    color: #1e3a8a;
}

.highlight-container::-webkit-scrollbar {
    height: 8px;
}

.highlight-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.highlight-container::-webkit-scrollbar-track {
    background: #f1f5f9;
}

/* === Services, Awards, Teaching === */
.info-section {
    margin-bottom: 10px;
}

.info-section b {
    font-weight: 600;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 28px;
    row-gap: 10px;
}

.service-col {
    flex: 1;
    min-width: 300px;
}

.service-header {
    margin-bottom: 12px;
    color: #1f2937;
    font-size: 16.2px;
    font-weight: 630;
    letter-spacing: -0.01em;
}

.service-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-list li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 15px;
    color: #475569;
    font-size: 14.3px;
    line-height: 1.72;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #94a3b8;
}

.info-row {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #5b6472;
    font-size: 12.8px;
    font-weight: 600;
    letter-spacing: 0.045em;
    white-space: nowrap;
}

.info-content {
    max-width: none;
    color: #3f4a59;
    font-size: 14.3px;
    line-height: 1.72;
}

.award-badge {
    display: inline-block;
    margin-left: 7px;
    padding: 1px 7px;
    background: #f6f8fa;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    font-size: 9.4px;
    font-weight: 700;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

.badge-red {
    color: #92400e;
}

.badge-blue {
    color: #1e3a8a;
}

.badge-gold {
    color: #b45309;
}

span {
    font-weight: 400;
}

@media (max-width: 860px) {
    .service-col {
        min-width: 100%;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .info-label {
        white-space: normal;
    }

    .info-content {
        max-width: none;
    }
}
